home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Mobiclic 124
/
MOBICLIC 124.ISO
/
mac
/
Milan.swf
/
scripts
/
__Packages
/
prod
/
hclasses
/
Trace
/
TraceBoxAlerte.as
< prev
Wrap
Text File
|
2010-05-11
|
661b
|
32 lines
class prod.hclasses.Trace.TraceBoxAlerte extends MovieClip
{
function TraceBoxAlerte()
{
super();
this.Init();
}
function Init()
{
trace("Init()" + this);
this._visible = false;
this.BTNfermer.onPress = function()
{
this._parent._visible = false;
this.message_txt.text = "";
};
this.FOND.onPress = function()
{
this.startDrag(false);
};
this.FOND.onRelease = function()
{
this.stopDrag();
};
}
function Afficher(mess)
{
this.message_txt.text += mess;
this._visible = true;
}
}